body {
  --primary: #0f172a;
  --accent: #b3e0dc;
  --darker-accent: #44d7ca;
  --highlight: #efe558;
  --text-muted: #64748b;
  --border-light: #e5e7eb;
  --bg-soft: #f8fafc;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
}

.hero {
  display: flex;
  align-items: center;
  padding: 50px;
  gap: 20px;
  background-color: var(--accent);
}
.hero-image {
  width: 50%;
  display: flex;
  justify-content: right;
  align-items: right;
}
.hero-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
}
.hero-text h1 {
  font-size: 50px;
  margin-bottom: 15px;
}
.hero-text p {
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* OSINT BOX */
.osint-box {
  background: #f4f4f4;
  margin: 50px 40px;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgb(68, 215, 202);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.description {
  padding: 20px;
}

/* NEWS SECTION */
.news-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin: 50px 50px 0px 40px;
  padding: 30px;
}
.news-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: #000;
  color: #fff;
  padding: 25px;
  border-radius: 28px;
  min-height: 130px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.stat-number {
  font-size: 13px;
  font-weight: 500;
  color: var(--darker-accent);
  text-align: center;
}
.stat-number span {
  font-size: 42px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.stat-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.stat-text small,
.other-cases small {
  display: block;
  font-size: 13px;
  opacity: 0.8;
  margin-top: 6px;
  text-align: center;
  text-decoration: none;
}
.stat-text small a,
.other-cases small a {
  font-style: italic;
  color: inherit;
  text-decoration: none;
}
.stat-text small a:hover,
.other-cases small a:hover {
  color: var(--darker-accent);
}

.news-content h2 {
  font-size: 28px;
  margin-bottom: 18px;
}
.highlight {
  background: #f6e44f;
  padding: 6px 12px;
  border-radius: 8px;
}
.news-content .intro {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}
.case-box {
  border: 2px solid #49d7c8;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 28px 0;
  max-width: 700px;
}
.case-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.other-cases .case-list {
  margin-left: 24px;
}
.other-cases ul {
  padding-left: 20px;
}

/* FEATURES */
.features {
  padding: 40px;
}
.highlight {
  background-color: var(--highlight);
  padding: 18px 12px;
  border-radius: 8px;
  font-size: 22px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.feature-card {
  padding: 25px;
  border-radius: 28px;
  min-height: 180px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.feature-card.light {
  border: 1px solid #ddd;
}
.feature-card.teal {
  background: #b3e0dc;
  color: #000;
}
.feature-card img {
  width: 100px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 6px;
}
.card-list li strong {
  font-weight: 600;
  margin-bottom: 10px;
}
.tag {
  padding: 12px 12px;
  border-radius: 6px;
  font-weight: 600;
}
.tag.teal {
  background: #b3e0dc;
}
.tag.white {
  background: #fff;
}
.learn {
  position: static;
}
.center-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.center-btn .btn-primary.small {
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 18px;
  background: #111827;
  transition: all 0.2s ease;
}
.center-btn .btn-primary.small:hover {
  background: #000;
  transform: translateY(-2px);
}

/* ================= RESPONSIVENESS ================= */
@media (max-width: 992px) {
  .news-container {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 32px 24px 0;
    padding: 24px;
  }
  .news-stats {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .stat-card {
    min-width: 240px;
    flex-shrink: 0;
  }
  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero,
  .features {
    padding: 40px 24px;
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .feature-card {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 16px;
    text-align: center;
  }
  .feature-card img {
    margin-top: 16px;
    width: 80%;
    height: auto;
  }
  .feature-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  .tag {
    font-size: 14px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
  .osint-box {
    margin: 40px 24px;
    padding: 24px;
  }
  .case-box {
    padding: 16px;
    margin: 20px 0;
  }
  .case-box p {
    font-size: 14px;
  }
  .news-content h2 {
    font-size: 22px;
  }
  .news-content .intro {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .stat-number span {
    font-size: 32px;
  }
  .stat-card {
    min-width: 200px;
  }
  .feature-card img {
    width: 100%;
    height: auto;
  }
  .feature-content p {
    font-size: 13px;
  }
  .osint-box {
    margin: 24px 16px;
    padding: 16px;
  }
  .case-box {
    margin: 16px 16px;
    padding: 14px;
  }
  .news-content .intro {
    font-size: 14px;
  }
  .news-content h2 {
    font-size: 20px;
  }
}
